home *** CD-ROM | disk | FTP | other *** search
/ Experimental BBS Explossion 3 / Experimental BBS Explossion III.iso / comunic / ace18b.zip / ACE.CTL < prev    next >
Text File  |  1993-12-26  |  14KB  |  556 lines

  1.  
  2. ;                         AceComm & Utilities (Tm)
  3. ;                              Version 1.8
  4. ;
  5. ;                       AceComm Ascii Control File
  6. ;                  Use ACTL.EXE to compile into ACE.PRM
  7. ;
  8. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  9. ;              ACE.CTL is
  10. ;                          A  Plain  Ascii  Text  File...
  11. ;                          Use  a  Plain  Ascii  Text  Editor...
  12. ; * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
  13. ;;; ============
  14. ;;;  Port Setup 
  15. ;;; ============
  16. Port 1
  17. ;   o Connect speeds such as 12000, 14400 etc. are not actual
  18. ;     data rates that the UART (serial port)  can be set to.
  19. ;   o Setting the Baud rate to 19200 for a 9600 baud modem will
  20. ;     allow better performance when down loading data.
  21. ;   o Locking the port means selecting a baud rate higher than the
  22. ;     highest connect speed the modem is capable of, and telling the
  23. ;     communications software to lock it there.
  24. ;   o Modems capable of connecting at 9600 and above can usually be
  25. ;     used with a "Locked port"
  26. ;   o Using a locked port requires your modem be in full handshake
  27. ;     mode.
  28. Baud 19200
  29. LockBaud 
  30. RBuff 8192
  31. RBuff 256
  32. FIFO_Trigger 8
  33. ;TX 
  34. CTS/RTS 
  35. XON/XOFF 
  36. ;Strip_HighBIT 
  37. DropDTR 
  38. ;;; =================
  39. ;;;  Dialing Options 
  40. ;;; =================
  41. InterByteDelay 1
  42. DialTimeout 60
  43. TimeBetweenRedial 1
  44. ;DTR_BetweenRedial 
  45. DialConnectBell 1
  46. ;DCD_VerifyConnect 
  47. ;;; ===========================
  48. ;;;  Internal Protocol Options 
  49. ;;; ===========================
  50. AutoEngage 
  51. FileResume 
  52. ;XfrTimeSlice 
  53. XfrBell 
  54. ;;; =================
  55. ;;;  General Options 
  56. ;;; =================
  57. StatusLine 
  58. LogFile 
  59. ;LogModemRes 
  60. AutoSave 
  61. ;SnowCheck 
  62. ScrnBlank 4
  63. SwapSpawn 
  64. SwapShell 
  65. EnhancedKBD 
  66. KeyRef 
  67. ;MailDialer 
  68. ScrlBakBuf 64
  69. VideoRows 0
  70. ;;; =================
  71. ;;;  Pointer Options 
  72. ;;; =================
  73. MouseX 6
  74. MouseY 4
  75. MouseDetect 
  76. ;;; ======================
  77. ;;;  Colors, Menu Options 
  78. ;;; ======================
  79. BorderAttr 7
  80. BorderType 0
  81. LeftFieldAttr 3
  82. RightFieldAttr 7
  83. DisplayATTR 48
  84. TitleAttr 120
  85. ITitleAttr 10
  86. SelectorAttr 2
  87. ;BurstMenu 
  88. ;ChatterMenu 
  89. ;WhistleMenu 
  90. TermColor 7
  91. CurtainColor 22
  92. CurtainChar 176
  93. HelpLineColor 112
  94. HelpScreenColor 7
  95. HelpScreenTitleColor 26
  96. HelpScreenKeyWordColor 122
  97. HelpScreenSelectorColor 30
  98. HelpScreenLastErrorColor 28
  99. FonBorderAttr 7
  100. FonBorderType 0
  101. FonLeftFieldAttr 3
  102. FonRightFieldAttr 7
  103. FonDisplayAttr 48
  104. FonTitleAttr 120
  105. FonITitleAttr 10
  106. FonSelectorAttr 2
  107. ;FonBurstMenu 
  108. ;FonChatterMenu 
  109. ;FonWhistleMenu 
  110. DialBorderAttr 3
  111. DialBorderType 3
  112. DialLeftFieldAttr 3
  113. DialRightFieldAttr 7
  114. DialDisplayAttr 7
  115. DialTitleAttr 15
  116. DialITitleAttr 14
  117. DialSelectorAttr 3
  118. ;DialBurstMenu 
  119. ;DialChatterMenu 
  120. ;DialWhistleMenu 
  121. ;;; =================
  122. ;;;  Sub Directories 
  123. ;;; =================
  124. FonDir   FON
  125. Captures CAP
  126. Scripts  SCR
  127. TermKey  KTS
  128. DnldDir  FIL
  129. Nodelist FIL
  130. MailIn   MAIL
  131. MailOut  MAIL
  132. ;;; =============
  133. ;;;  Modem Setup 
  134. ;;; =============
  135. ;
  136. ; - Modem command strings
  137. ;   Note: Mdm commands are automaticaly appended with
  138. ;         Mdm_Cmd_Line_Terminator at time the command string
  139. ;         is sent to the modem.
  140. ;         The `^` character is recognized as a Control character.
  141. ;         The byte following a `^` will become (byte - 64d)
  142. ;   Examples:
  143. ;             ^M translates to CR
  144. ;             ^A translates to 1, ^M translates to 13 (CR_CHAR)
  145. ;             ~ translates to a 250 milisecond delay
  146. Mdm_Init ATZ^M~~~~ATE0&C1&D2
  147. Mdm_Dial_Prefix ATEQ0X4DT
  148. Mdm_Dial_Sufix 
  149. Mdm_Answer ATA
  150. Mdm_Hangup +++~~~~~ATH0
  151. Mdm_OffHook ATH1
  152. Mdm_Abort ^M
  153. Mdm_Reset ATZ
  154. Mdm_Echo ATE1
  155. Mdm_Host_Init ATE
  156. ;
  157. ; Mdm_Cmd_Line_Terminator is automaticaly appended to all modem commands
  158. Mdm_Cmd_Line_Terminator ^M
  159. ;
  160. ;
  161. ; - Modem Responce Strings
  162. ;   Note: The following strings are probably case sensitive
  163. ;                                   (see your modem manual)
  164. Mdm_Res_OK OK^M
  165. Mdm_Res_Ring RING^M
  166. Mdm_Res_NoCarrier NO CARRIER
  167. Mdm_Res_Error ERROR
  168. Mdm_Res_NoDialTone NO DIAL TONE
  169. Mdm_Res_Busy BUSY
  170. Mdm_Res_NoAnswer NO ANSWER
  171. Mdm_Res_Ringing RINGING^M
  172. Mdm_Res_Voice VOICE
  173. ;
  174. ; - The following connect strings may be tailored any way you wish.
  175. ;   No particular order, refer to your modem manual for case and format.
  176. ; Note: ACECOMM will detect a carrier anyway, the connect strings
  177. ;       may speed things up, and will also allow automatic baud adjustments
  178. ;       when connecting at a speed not dialed out on, and port not locked.
  179. ;       With Lockbaud SET, the UART baud rate remains fixed, translation
  180. ;       is made by your modem.
  181. Mdm_Res_Connect_a CONNECT 
  182. Mdm_Res_Connect_b CARRIER
  183. Mdm_Res_Connect_c FAX
  184. ;;; ========================
  185. ;;;  Interactive EMSI Setup 
  186. ;;; ========================
  187. IEMSI_Name Michael Phelps
  188. IEMSI_Alias Michael Phelps/(AceComm)
  189. IEMSI_Location Phoenix, AZ  USA
  190. IEMSI_Data_Pnum (602) 846-2940
  191. IEMSI_Voice_Pnum, 
  192. IEMSI_Password password
  193. IEMSI_CRTDEF ANSI,24,80,0
  194. IEMSI_Protocols Zap,ZMO
  195. IEMSI_Capabilities CHT,TAB,ASCII8
  196. IEMSI_Requests NEWS,MAIL,FILE,HOT,CLR,HUSH,MORE,FSED
  197. ;;; ============
  198. ;;;  EMSI Setup 
  199. ;;; ============
  200. EMSI_System_Address 1:114/35
  201. EMSI_System_Name AceComm Software Support
  202. EMSI_City Phoenix, AZ
  203. EMSI_Phone_Number (602) 846-2940
  204. EMSI_Baud_Rate 19200
  205. EMSI_Flags v32
  206. PassWord0 
  207. PassWord1 
  208. PassWord2 
  209. PassWord3 
  210. PassWord4 
  211. DialTrans0 1-602-
  212. DialTrans1 
  213. DialTrans2 
  214. DialTrans3 
  215. DialTrans4 
  216. BossAddress 1:114/35
  217. BossName Acecomm Software Support BBS
  218. BossPhone 1-602-846-2940
  219. BossPwd mailman
  220. BossBaud 19200
  221. ;;; ========================================================
  222. ;;;  Auto Engage Sequence Triggers, Associated Macro Stacks 
  223. ;;; ========================================================
  224. PreAutoM 
  225. PostAutoM 
  226. AutoDnld0 rz^M**^X
  227. AutoDnld1 HS*^B
  228. AutoDnld2 ^H ^H ^H ^H ^H ^H 
  229. AutoDnld3 MPt ^V^H
  230. AutoDnld4 
  231. AutoDnld5 
  232. AutoDnld6 
  233. AutoDnld7 
  234. AutoDnld8 **EMSI_REQA77E
  235. AutoDnld9 **EMSI_IRQ8E08
  236. AutoMacro0 <RecvZmo>
  237. AutoMacro1 <RunProg>HSLINK -P%P -U[DIR_DNLDS] @UPLDS.LST
  238. AutoMacro2 <RunProg>BIMODEM /L%P /R[DIR_DNLDS] Bimodem.Pth
  239. AutoMacro3 <RunProg>MPT P%P N+ F+ R+ R [DIR_DNLDS]
  240. AutoMacro4 
  241. AutoMacro5 
  242. AutoMacro6 
  243. AutoMacro7 
  244. AutoMacro8 <SendEMSI_CLI>
  245. AutoMacro9 <SendEMSI_ICI>
  246. ;;; ========================================================
  247. ;;;  Auto Log On Sequence Triggers, Associated Macro Stacks 
  248. ;;; ========================================================
  249. AutoLogOn0 is your name:
  250. AutoLogOn1 Your FIRST name:
  251. AutoLogOn2 Host Name:
  252. AutoLogOn3 first name ?
  253. AutoLogOn4 and LAST name:
  254. AutoLogOn5 last name?
  255. AutoLogOn6 first name?
  256. AutoLogOn7 (First and Last)
  257. AutoLogOn8 
  258. AutoLogOn9 
  259. AutoLogOna 
  260. AutoLogOnb 
  261. AutoLogOnc 
  262. AutoLogOnd 
  263. AutoLogOne 
  264. AutoLogOnf 
  265. AutoLMacro0 <SendStr>[USER_NAME]^M~Y^M~[FON_PWD]^M
  266. AutoLMacro1 <SendStr>[USER_NAME]^MY^M~[FON_PWD]^M
  267. AutoLMacro2 <SendStr>CIS^M~~~~[FON_ID]^M~~~~~~[FON_PWD]^M
  268. AutoLMacro3 <SendStr>[USER_NAME]^MY^M[FON_PWD]^M
  269. AutoLMacro4 <SendStr>[USER_NAME]^M~^M~[FON_PWD]^M
  270. AutoLMacro5 <SendStr>[USER_NAME]^M~~[FON_PWD]^M
  271. AutoLMacro6 <SendStr>[USER_NAME]^M~~[FON_PWD]^M
  272. AutoLMacro7 <SendStr>[USER_NAME]^M~~[FON_PWD]^M
  273. AutoLMacro8 
  274. AutoLMacro9 
  275. AutoLMacroa 
  276. AutoLMacrob 
  277. AutoLMacroc 
  278. AutoLMacrod 
  279. AutoLMacroe 
  280. AutoLMacrof 
  281. ;;; ========================================================
  282. ;;;  Event Schedules, Associated Macro Stacks 
  283. ;;; ========================================================
  284. ;;    Sample Event an associated macro stack:
  285. ;; (Allow a mail event from midnight to 3am)
  286. ; Schedule_0    0:0-3:0,MAIL
  287. ;; (The macro stack will be run at beginning of event)
  288. ; SchedMacro_0  <ChgDir>c:\mail <RunProgram>QM <ChgDir>[DIR_START]
  289. Schedule_0 00:00-03:00,Mail
  290. Schedule_1 8:30-9:0,Mail,Host
  291. Schedule_2 
  292. Schedule_3 12:00-13:00,Mail
  293. Schedule_4 
  294. SchedMacro_0 <ChgDir>c:\mail\qm <RunProg>QM scan <ChgDir>[DIR_START] <PollBoss>
  295. SchedMacro_1 <ChgDir>c:\mail\qm <RunProg>QM toss <ChgDir>[DIR_START] <PollBoss>
  296. SchedMacro_2 
  297. SchedMacro_3 <PollBoss>
  298. SchedMacro_4 
  299. ;;; =========================================================
  300. ;;;  Auto Answer Connect Sub-string, Associated Macro Stacks 
  301. ;;; =========================================================
  302. ;;    Sub_string  - String to match in modem Answer/Connect string
  303. ;;    Macro stack - Macro stack to process on Answer/Connect
  304. ;;    Sample Sub-string and associated macro stack:
  305. ;AutoAnsSub-str_1 CONNECT
  306. ;AutoAnsMac_1 <RunProgram>TRIBBS port %P baud %B
  307. ;;    Sample Sub-string and associated macro stack:
  308. ;AutoAnsSub-str_2 FAX
  309. ;AutoAnsMac_2 <RunProgram>BGFAX /FAX %P Q
  310. AutoAnsSub-str_1 CONNECT
  311. AutoAnsMac_1 <HostEcho> <SendStr>^M^L[ACE_ID]^M^JSysop [USER_NAME], [LOCATION]^M^J^J^J^J
  312. AutoAnsSub-str_2 FAX
  313. AutoAnsMac_2 <RunProg>BGFAX /FAX %P Z
  314. AutoAnsSub-str_3 CARRIER
  315. AutoAnsMac_3 <ChgDir>C:\BBS <RunProg>BBS %P %B <ChgDir>[DIR_START]
  316. DefaultMac <RunProg>BGFAX /FAX %P Z
  317. ;;; ===================
  318. ;;;  Mondo Menus (Tm)
  319. ;;; ===================
  320. Mondo_1_Title CIS Functions
  321. Mondo1_desc_a CIS Forums Script
  322. Mondo1_macro_a <RunScript>cisforum.scr
  323. Mondo1_desc_b CIS Bill Script
  324. Mondo1_macro_b <RunScript>cisbill.scr
  325. Mondo1_desc_c Compose Message
  326. Mondo1_macro_c <SendAscii>%P
  327. Mondo1_desc_d IBMPRO Forum 2 File
  328. Mondo1_macro_d <SendStr>go IbmPro^M <OpenCapture>ibmpro <SendStr>~~~~~~~~Read New^M
  329. Mondo1_desc_e IBMCOM Forum 2 File
  330. Mondo1_macro_e <SendStr>go IbmCom^M <OpenCapture>ibmcom <SendStr>~~~~~~~~Read New^M
  331. Mondo1_desc_f 
  332. Mondo1_macro_f 
  333. Mondo1_desc_g CIS Msg Reference
  334. Mondo1_macro_g <RunProg>List cis_msg.ref
  335. Mondo_2_Title OffLine Reader
  336. Mondo2_desc_a Read Off-line Mail
  337. Mondo2_macro_a <ChgDir>\mail\reader <RunProg>BlueWave <ChgDir>[DIR_START]
  338. Mondo2_desc_b Run Mail Script
  339. Mondo2_macro_b <RunScript>offline.scr
  340. Mondo2_desc_c 
  341. Mondo2_macro_c 
  342. Mondo2_desc_d 
  343. Mondo2_macro_d 
  344. Mondo2_desc_e 
  345. Mondo2_macro_e 
  346. Mondo2_desc_f 
  347. Mondo2_macro_f 
  348. Mondo2_desc_g Delete old .QWK
  349. Mondo2_macro_g <FileDel>c:\mail\114-35.qwk
  350. Mondo_3_Title Mondo Menu #3
  351. Mondo3_desc_a Description
  352. Mondo3_macro_a Macro Stack
  353. Mondo3_desc_b Description 
  354. Mondo3_macro_b Macro Stack
  355. Mondo3_desc_c Description
  356. Mondo3_macro_c Macro Stack
  357. Mondo3_desc_d 
  358. Mondo3_macro_d 
  359. Mondo3_desc_e 
  360. Mondo3_macro_e 
  361. Mondo3_desc_f 
  362. Mondo3_macro_f 
  363. Mondo3_desc_g 
  364. Mondo3_macro_g 
  365. Mondo_4_Title Mondo Menu #4
  366. Mondo4_desc_a 
  367. Mondo4_macro_a 
  368. Mondo4_desc_b 
  369. Mondo4_macro_b 
  370. Mondo4_desc_c 
  371. Mondo4_macro_c 
  372. Mondo4_desc_d 
  373. Mondo4_macro_d 
  374. Mondo4_desc_e 
  375. Mondo4_macro_e 
  376. Mondo4_desc_f 
  377. Mondo4_macro_f 
  378. Mondo4_desc_g 
  379. Mondo4_macro_g 
  380. Mondo_5_Title Mondo Menu #5
  381. Mondo5_desc_a 
  382. Mondo5_macro_a 
  383. Mondo5_desc_b 
  384. Mondo5_macro_b 
  385. Mondo5_desc_c 
  386. Mondo5_macro_c 
  387. Mondo5_desc_d 
  388. Mondo5_macro_d 
  389. Mondo5_desc_e 
  390. Mondo5_macro_e 
  391. Mondo5_desc_f 
  392. Mondo5_macro_f 
  393. Mondo5_desc_g 
  394. Mondo5_macro_g 
  395. ;;; ==============
  396. ;;;  ALT A-Z, 1-0 
  397. ;;; ==============
  398. ;
  399. ; AceComm`s MACRO driven keyboard provides for easy key re-def
  400. ;
  401. ; You may define the keys any way you like, should you forget to
  402. ; assign an exit key, CTRL-BREAK from terminal mode will force the
  403. ; <EndACEComm> MACRO to be executed, CTRL-BREAK is an acceptable
  404. ; key-combo permanantly assigned to the <EndACEComm> MACRO
  405. ;
  406. ; Functions which end with `_` are not suited for scripts as they
  407. ; require local keyboard input.
  408. ALT-A <AutoScrGen_>
  409. ALT-B <BackBuffer_>
  410. ALT-C <CaptureFile_>
  411. ALT-D <FonListDialer_>
  412. ALT-E <SendStr> ATE^M <HostEcho>
  413. ALT-F <FileLister_>[DIR_DNLDS]
  414. ALT-G <FileRequest_>
  415. ALT-H <MdmHangUp_> 
  416. ALT-I 
  417. ALT-J <CommandShell_>
  418. ALT-K 
  419. ALT-L <RunProg> list
  420. ALT-M <SendStr>ath1^M <ChgDir>mail\ged <RunProg>GOLDED <ChgDir>[DIR_START]
  421. ALT-N <ChgDir>c:\mail\qm <RunProg>QM toss <ChgDir>[DIR_START]
  422. ALT-O <PrmDataMenus_>
  423. ALT-P <PrmDataMenus_>
  424. ALT-Q 
  425. ALT-R <RunScript_>
  426. ALT-S <ScrnSnapshot_>
  427. ALT-T <ScrnTag_>
  428. ALT-U 
  429. ALT-V <ViewKeyCombos_>
  430. ALT-W 
  431. ALT-X <EndAceComm> 0
  432. ALT-Y <AutoAnswer>
  433. ALT-Z <ClearWindow>
  434. ALT-1 <SendZmo> %PF
  435. ALT-2 <RunProg>DSZ sz %PF %WK <SendStr> ^M
  436. ALT-3 <SendAscii> %PF
  437. ALT-4 <RunProg>BiPath 
  438. ALT-5 
  439. ALT-6 <RunProg> dsz rz -rm
  440. ALT-7 <RunProg>bimodem bimodem.pth <SendStr>^M
  441. ALT-8 
  442. ALT-9 
  443. ALT-10 
  444. ALT-- 
  445. ALT-= <DoorWayMode>
  446. ;;; ==========
  447. ;;;  CTRL A-Z 
  448. ;;; ==========
  449. CTRL-A 
  450. CTRL-B 
  451. CTRL-C 
  452. CTRL-D 
  453. CTRL-E 
  454. CTRL-F 
  455. CTRL-G 
  456. CTRL-H 
  457. CTRL-I 
  458. CTRL-J 
  459. CTRL-K 
  460. CTRL-L 
  461. CTRL-M 
  462. CTRL-N 
  463. CTRL-O 
  464. CTRL-P 
  465. CTRL-Q 
  466. CTRL-R 
  467. CTRL-S 
  468. CTRL-T 
  469. CTRL-U 
  470. CTRL-V 
  471. CTRL-W 
  472. CTRL-X 
  473. CTRL-Y 
  474. CTRL-Z 
  475. CTRL-2 
  476. CTRL-6 
  477. CTRL-- 
  478. CTRL-BkSp 
  479. CTRL-[ 
  480. CTRL-] 
  481. CTRL-Enter 
  482. CTRL-\ 
  483. CTRL-PrtSc 
  484. CTRL-Home 
  485. CTRL-PgUp 
  486. CTRL-Left 
  487. CTRL-Right 
  488. CTRL-End 
  489. CTRL-PgDn 
  490. ;;; ============
  491. ;;;  Other Keys 
  492. ;;; ============
  493. Home 
  494. Up 
  495. PgUp <SProtocols_>
  496. GreyMinus 
  497. Left 
  498. Right 
  499. GreyPlus 
  500. End 
  501. Down 
  502. PgDn <RProtocols_>
  503. Ins 
  504. Del 
  505. ;;; =========
  506. ;;;  Fn Keys 
  507. ;;; =========
  508. F1 <SendStr>[USER_NAME]^M
  509. F2 <SendStr>[FON_REC_PWD]^M
  510. F3 <SendStr>[LOCATION]^M
  511. F4 <SendStr>[VOICE_PNUM]^M
  512. F5 <SendStr>[PASSWORD]^M
  513. F6 <SetDTR> ON
  514. F7 <SendAscii> %PF
  515. F8 <Mondos>
  516. F9 <HelpMenu>
  517. F10 <TopBar>
  518. F11 <Mondo1>
  519. F12 <SendStr>75120,3306^M
  520. SHIFT-F1 <SendStr>bpcsrc.zip
  521. SHIFT-F2 <SendStr>USRGDE.DOC
  522. SHIFT-F3 <SendStr>REFCRD.DOC
  523. SHIFT-F4 <SendStr>HELP.DOC
  524. SHIFT-F5 <SendStr>MPT110.ARJ
  525. SHIFT-F6 <SendStr>RTGRAF.ZIP
  526. SHIFT-F7 
  527. SHIFT-F8 
  528. SHIFT-F9 
  529. SHIFT-F10 
  530. SHIFT-F11 
  531. SHIFT-F12 
  532. CTRL-F1 <LocalEcho> ON <DIALNUM> 846-2940 <LocalEcho> OFF
  533. CTRL-F2 <SetDTR> Off <Delay> 5 <SetDTR> ON
  534. CTRL-F3 
  535. CTRL-F4 
  536. CTRL-F5 
  537. CTRL-F6 
  538. CTRL-F7 
  539. CTRL-F8 
  540. CTRL-F9 
  541. CTRL-F10 
  542. CTRL-F11 
  543. CTRL-F12 
  544. ALT-F1 <RunProg> list
  545. ALT-F2 <RunProg> bb
  546. ALT-F3 <RunProg> QEDIT %PF
  547. ALT-F4 <RunProg> COMMAND /C dir /w %WK
  548. ALT-F5 
  549. ALT-F6 
  550. ALT-F7 
  551. ALT-F8 
  552. ALT-F9 
  553. ALT-F10 
  554. ALT-F11 
  555. ALT-F12 
  556.